DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / Write Method / Write(Byte[]) Method

Byte Array to write image data to







In This Topic
    Write(Byte[]) Method
    In This Topic
    Write the image data to a Byte Array
    Syntax
    'Declaration
     
    
    Public Overloads Sub Write( _
       ByRef Array() As System.Byte _
    ) 
    'Usage
     
    
    Dim instance As DicomImage
    Dim Array() As System.Byte
     
    instance.Write(Array)
    public void Write( 
       out System.byte[] Array
    )
    public procedure Write( 
       Out  Array: System.Bytearray of
    ); 
    public function Write( 
       Array : System.byte[]
    );
    public: void Write( 
       [PARAMFLAG::Out] System.byte[]* Array
    ) 
    public:
    void Write( 
       [Out] System.array<byte>^ Array
    ) 

    Parameters

    Array

    Byte Array to write image data to

    Remarks
    Data may be read back by the corresponding Read method.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also